На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:
общая лексика
система поддержки исполнения программ
общая лексика
среда реального времени
ПО, позволяющее отлаживать программы, работающие в реальном времени
общая лексика
время выполнения
полное время, затраченное процессором на выполнение одной машинной команды
Смотрите также
общая лексика
разделение времени, режим разделения времени
метод организации одновременного многотерминального доступа многих пользователей к однопроцессорному или многопроцессорному компьютеру (вычислительному ресурсу). Реализуется, в частности, в диспетчере задач операционной системы за счет выделения каждой задаче постоянного или переменного кванта времени так, что у пользователя создается впечатление единоличной работы с системой
разделение времени
синоним
Смотрите также
['taimʃe(ə)riŋ]
общая лексика
TS
режим разделения времени
Смотрите также
существительное
общая лексика
использование компьютера
ЭВМ в режиме разделения времени
In computer programming, a runtime system or runtime environment is a sub-system that exists both in the computer where a program is created, as well as in the computers where the program is intended to be run. The name comes from the compile time and runtime division from compiled languages, which similarly distinguishes the computer processes involved in the creation of a program (compilation) and its execution in the target machine (the run time).
Most programming languages have some form of runtime system that provides an environment in which programs run. This environment may address a number of issues including the management of application memory, how the program accesses variables, mechanisms for passing parameters between procedures, interfacing with the operating system, and otherwise. The compiler makes assumptions depending on the specific runtime system to generate correct code. Typically the runtime system will have some responsibility for setting up and managing the stack and heap, and may include features such as garbage collection, threads or other dynamic features built into the language.